﻿.banner {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
}

.banner__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.banner__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    padding: 8rem;
    padding-bottom: 4rem;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    color: white;
}

.banner__header {
    text-align: center;
}

.banner__title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

.banner__title__text::before {
    content: '';
    display: inline-block;
    width: 25px;
    height: 18px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="30" viewBox="0 0 40 30" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 0L14.8292 14.9114L0.000143864 29.8229L3.70752 29.8226L18.5366 14.9114L3.70752 0H0Z" fill="white"/><path fill-rule="evenodd" clip-rule="evenodd" d="M36.292 0.00014468L21.463 14.9115L36.292 29.8229H39.9995L25.1703 14.9114L39.9995 0L36.292 0.00014468Z" fill="white"/></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    left: -23px;
    top: -3px;
    z-index: 2;
    position: absolute;
}

.banner__description {
    margin-top: 1rem;
    font-size: 1.125rem;
}

.banner__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.banner__columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 100%;
  
    margin: 0 auto;
}

.banner__col-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.banner__col-body {
    font-size: 1rem;
    color: #ffffffcc;
}

.banner__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.banner__buttons a {
    min-width: 200px;
}

.banner__col {
    flex: 1 1 calc(25% - 2rem);
    min-width: 100px;
}

@media (max-width: 768px) {
    .banner__buttons {
        display: none;
    }

    .banner__title {
        font-size: 2rem;
    }

    .banner__description {
        font-size: 0.875rem;
    }

    .banner__inner {
        padding: 8rem 1rem;
        padding-bottom: 4rem;
    }

    .banner__title__text::before {
        top: -7px;
    }

    .banner__col-title {
        font-size: 1rem;
    }

    .banner__col-body {
        font-size: 0.875rem;
    }

    .btn-medium {
        min-height: 2rem;
    }
}